tendermint-rpc 0.16.0

tenndermint-rpc contains the core types returned by a Tendermint node's RPC endpoint. All networking related features are feature guarded to keep the dependencies small in cases where only the core types are needed.
Documentation

Crate Docs

See the repo root for build status, license, rust version, etc.

tendermint-rpc

A rust implementation of the core types returned by a Tendermint node's RPC endpoint. These can be used to deserialize JSONRPC responses. All networking related features will be feature guarded to keep the dependencies small in cases where only the core types are needed.

Documentation

See documentation on crates.io.

The client Feature

Additionally, this crate includes an RPC client implementation to query Tendermint RPC endpoints. To keep dependencies small when only the core types are needed, it has to be explicitly enabled via the client feature.

Related